home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / modules.lha / modules / gadgets / select.m < prev    next >
Encoding:
Text File  |  2002-01-12  |  1.8 KB  |  50 lines

  1. #define SGA_Dummy       (TAG_USER + 0xA0000)
  2. #define SGA_Active      (SGA_Dummy + 0x0001)
  3. #define SGA_Labels      (SGA_Dummy + 0x0002)
  4. #define SGA_MinItems    (SGA_Dummy + 0x0003)
  5. #define SGA_FullPopUp   (SGA_Dummy + 0x0004)
  6. #define SGA_PopUpDelay  (SGA_Dummy + 0x0005)
  7. #define SGA_PopUpPos    (SGA_Dummy + 0x0006)
  8. #define SGA_Sticky      (SGA_Dummy + 0x0007)
  9. #define SGA_TextAttr    (SGA_Dummy + 0x0008)
  10. #define SGA_TextFont    (SGA_Dummy + 0x0009)
  11. #define SGA_TextPlace   (SGA_Dummy + 0x000A)
  12. #define SGA_Underscore  (SGA_Dummy + 0x000B)
  13. #define SGA_Justify     (SGA_Dummy + 0x000C)
  14. #define SGA_Quiet       (SGA_Dummy + 0x000D)
  15. #define SGA_Symbol      (SGA_Dummy + 0x000E)
  16. #define SGA_SymbolWidth (SGA_Dummy + 0x000F)
  17. #define SGA_SymbolOnly  (SGA_Dummy + 0x0010)
  18. #define SGA_Separator   (SGA_Dummy + 0x0011)
  19. #define SGA_ListFrame   (SGA_Dummy + 0x0012)
  20. #define SGA_DropShadow  (SGA_Dummy + 0x0013)
  21. #define SGA_ItemHeight  (SGA_Dummy + 0x0014)
  22. #define SGA_ListJustify (SGA_Dummy + 0x0015)
  23. #define SGA_ActivePens  (SGA_Dummy + 0x0016)
  24. #define SGA_ActiveBox   (SGA_Dummy + 0x0017)
  25. #define SGA_BorderSize  (SGA_Dummy + 0x0018)
  26. #define SGA_FullWidth   (SGA_Dummy + 0x0019)
  27. #define SGA_FollowMode  (SGA_Dummy + 0x001A)
  28. #define SGA_ReportAll   (SGA_Dummy + 0x001B)
  29. #define SGA_Refresh     (SGA_Dummy + 0x001C)
  30. #define SGA_ItemSpacing (SGA_Dummy + 0x001D)
  31. #define SGA_MinTime     (SGA_Dummy + 0x001E)  /* Min anim duration (40.14) */
  32. #define SGA_MaxTime     (SGA_Dummy + 0x001F)  /* Max anim duration (40.14) */
  33. #define SGA_PanelMode   (SGA_Dummy + 0x0020)  /* Window? Blocking? (40.14) */
  34. #define SGA_Transparent (SGA_Dummy + 0x0021)  /* Transparent menu? (40.17) */
  35.  
  36. CONST SGJ_LEFT=0,
  37.  SGJ_CENTER=1,
  38.  SGJ_RIGHT=2,
  39.  SGPOS_ONITEM=0,
  40.  SGPOS_ONTOP=1,
  41.  SGPOS_BELOW=2,
  42.  SGPOS_RIGHT=3,
  43.  SGFM_NONE=0,
  44.  SGFM_KEEP=1,
  45.  SGFM_FULL=2,
  46.  SGPM_WINDOW=0,
  47.  SGPM_DIRECT_NB=1,
  48.  SGPM_DIRECT_B=2,
  49.  SGS_NOSYMBOL=$FFFFFFFF
  50.